home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 3: The Continuation / 17-Bit_The_Continuation_Disc.iso / amigan / amigan 3 / amiga / ckiker.upd < prev    next >
Encoding:
Text File  |  1994-01-27  |  1.2 KB  |  27 lines

  1. CKIKER.UPD -- list of updates to Amiga Kermit
  2.  
  3. CKIFIO.C, 12 July 1986:
  4. Worked around bug with Lattice standard I/O putc() macro which causes
  5. signed char 0xFF to be discarded if output when it is time to flush a block.
  6. This was affecting 0xFF's at offsets which were multiples of 512 bytes when
  7. binary files were received.  Fixed by changing zchout() argument to unsigned
  8. char.  Also modified zchout() so that an output file error would return -1
  9. as documented.
  10.  
  11. CKITIO.C, 17 July 1986
  12. Fixed bug in contti() which caused the control sequence introducer (0x9B)
  13. to not be transmitted as the ANSI ESC [ sequence in connect mode.  This
  14. uncovered a bug in ttocq() which occurred only with extremely rapid input,
  15. which was then fixed.
  16.  
  17. CKIUTL.C, 17 July 1986
  18. Worked around AmigaDOS quirk which caused last line input in a CLI window
  19. spawned by system() to be echoed (without newline) to the original process
  20. window.  The file handle structure is modified, which lacks finesse but
  21. seems to work.
  22.  
  23. CKICON.C, 27 July 1986
  24. Parity was not being added to outgoing characters in connect mode, causing
  25. problems with systems that actually cared about parity.  The parity
  26. calculation was reinstated.
  27.